home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 424_02 / ED-157 / get_column.c < prev    next >
C/C++ Source or Header  |  1994-02-08  |  2KB  |  53 lines

  1. /*
  2.  * Copyright (C) 1992 by Rush Record
  3.  * Copyright (C) 1993 by Charles Sandmann (sandmann@clio.rice.edu)
  4.  * 
  5.  * This file is part of ED.
  6.  * 
  7.  * ED is free software; you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation.
  9.  * 
  10.  * ED is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  11.  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  13.  * 
  14.  * You should have received a copy of the GNU General Public License along with ED
  15.  * (see the file COPYING).  If not, write to the Free Software Foundation, 675
  16.  * Mass Ave, Cambridge, MA 02139, USA.
  17.  */
  18. #include "opsys.h"
  19.  
  20. #include "rec.h"
  21. #include "window.h"
  22. #include "ed_dec.h"
  23.  
  24. /******************************************************************************\
  25. |Routine: get_column
  26. |Callby: cfrendly change_case copier down_arrow edit fix_scroll insert killer left_arrow match_paren move_eol move_word paint paint_window set_param trim unselect up_arrow word_fill
  27. |Purpose: Returns the column number of a particular byte in a record.
  28. |Arguments:
  29. |    r is the record being analyzed.
  30. |    byte is the byte offset in that record.
  31. \******************************************************************************/
  32. Int get_column(r,byte)
  33. rec_ptr r;
  34. Int byte;
  35. {
  36.     register Int c,ch;
  37.     register Char *p,*q;
  38.  
  39.     if(HEXMODE)
  40.         return((byte << 2) + 1);
  41.     for(p = r->data,q = r->data + byte,c = 0;p != q;p++)
  42.     {
  43.         if((ch = *p) == '\t')
  44.             c = tabstop(c);
  45.         else if(NONPRINTNCS(ch))
  46.             c += 4;
  47.         else
  48.             c++;
  49.     }
  50.     return(c + 1);
  51. }
  52.  
  53.